home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / PPL / LANGUAGE.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1994-02-14  |  752 b   |  73 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     STRING001 = "Enter Language # to use (enter)=no change"
  26.     STRING003 = Chr(13)
  27.     InputStr STRING001, STRING002, 7, 2, Mask_Num(), 256 + 8192
  28.     If (STRING002 == "") Then
  29.         KbdStuff STRING003
  30.     Else
  31.         KbdStuff STRING002
  32.     Endif
  33.     End
  34.  
  35. ;------------------------------------------------------------------------------
  36. ;
  37. ; Usage report (before postprocessing)
  38. ;
  39. ; ■ Statements used :
  40. ;
  41. ;    1       End
  42. ;    2       Goto 
  43. ;    2       Let 
  44. ;    1       If 
  45. ;    1       InputStr 
  46. ;    2       KbdStuff 
  47. ;
  48. ;
  49. ; ■ Functions used :
  50. ;
  51. ;    1       +
  52. ;    1       ==
  53. ;    1       !
  54. ;    1       Chr()
  55. ;    1       Mask_Num()
  56. ;
  57. ;------------------------------------------------------------------------------
  58. ;
  59. ; Analysis flags : No flag
  60. ;
  61. ;------------------------------------------------------------------------------
  62. ;
  63. ; Postprocessing report
  64. ;
  65. ;    0       For/Next
  66. ;    0       While/EndWhile
  67. ;    1       If/Then or If/Then/Else
  68. ;    0       Select Case
  69. ;
  70. ;------------------------------------------------------------------------------
  71. ;                 AEGiS Corp - Break the routines, code against the machines!
  72. ;------------------------------------------------------------------------------
  73.